home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- if '%1'== '' goto syntax
- if '%2'== '' goto syntax
- echo Federal Express Label Printer Installer
- echo Copyright 1990, 1991 Thomas V. Sollas III
- echo/
- echo This batch file will create a directory on your hard drive %1
- echo with the following path:
- echo %1\%2.
- echo If this is not correct, please press Ctrl-C (hold the Ctrl key down
- echo and press C) when asked to continue, otherwise just press enter.
- echo/
- pause
- echo Copying files...
- md %1\%2
- copy *.EXE %1\%2
- copy *.HLP %1\%2
- copy *.DOC %1\%2
- copy *.DAT %1\%2
- echo Done.
- goto end
- :Syntax
- echo You must enter a drive and path to install this program onto.
- echo Syntax:
- echo/
- echo FEDINST d: path
- echo/
- echo where d: is the drive letter and path is the directory. This
- echo batch file will create this directory.
- echo/
- echo FEDINST C: FEDEXLBL
- echo/
- echo This command would install the program and its files into the
- echo directory C:\FEDEXLBL. Make sure you are in the disk drive that
- echo the program and its files are on. If the disk is in drive A:
- echo then change to drive A: by typing A: at the DOS prompt.
- :end